home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / ldapjdk.jar / netscape / ldap / ber / stream / BERInteger.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-13  |  755 b   |  23 lines

  1. package netscape.ldap.ber.stream;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5.  
  6. public class BERInteger extends BERIntegral {
  7.    public BERInteger(int var1) {
  8.       super(var1);
  9.    }
  10.  
  11.    public BERInteger(InputStream var1, int[] var2) throws IOException {
  12.       super(var1, var2);
  13.    }
  14.  
  15.    public int getType() {
  16.       return 2;
  17.    }
  18.  
  19.    public String toString() {
  20.       return "Integer {" + ((BERIntegral)this).getValue() + "}";
  21.    }
  22. }
  23.